 <?php
 // Get IDs
 $product_id = $_POST[1product_id1];
 $category_ld = $_POST[1category_id1];
 // Delete the product from the database 
require_once(1 database.php1);
 $query = "DELETE FROM album
 WHERE productID = 1$product_id1";
 $db->exec($query);
 // Display the Product List page 
Include(1 Index.php1);
 ?>